home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / shutil.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  7KB  |  262 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """Utility functions for copying files and directory trees.
  5.  
  6. XXX The functions here don't copy the resource fork or other metadata on Mac.
  7.  
  8. """
  9. import os
  10. import sys
  11. import stat
  12. import exceptions
  13. from os.path import abspath
  14. __all__ = [
  15.     'copyfileobj',
  16.     'copyfile',
  17.     'copymode',
  18.     'copystat',
  19.     'copy',
  20.     'copy2',
  21.     'copytree',
  22.     'move',
  23.     'rmtree',
  24.     'Error']
  25.  
  26. class Error(exceptions.EnvironmentError):
  27.     pass
  28.  
  29.  
  30. def copyfileobj(fsrc, fdst, length = 16 * 1024):
  31.     '''copy data from file-like object fsrc to file-like object fdst'''
  32.     while None:
  33.         buf = fsrc.read(length)
  34.         if not buf:
  35.             break
  36.         
  37.  
  38.  
  39. def _samefile(src, dst):
  40.     if hasattr(os.path, 'samefile'):
  41.         
  42.         try:
  43.             return os.path.samefile(src, dst)
  44.         except OSError:
  45.             return False
  46.         except:
  47.             None<EXCEPTION MATCH>OSError
  48.         
  49.  
  50.     None<EXCEPTION MATCH>OSError
  51.     return os.path.normcase(os.path.abspath(src)) == os.path.normcase(os.path.abspath(dst))
  52.  
  53.  
  54. def copyfile(src, dst):
  55.     '''Copy data from src to dst'''
  56.     if _samefile(src, dst):
  57.         raise Error, '`%s` and `%s` are the same file' % (src, dst)
  58.     
  59.     fsrc = None
  60.     fdst = None
  61.     
  62.     try:
  63.         fsrc = open(src, 'rb')
  64.         fdst = open(dst, 'wb')
  65.         copyfileobj(fsrc, fdst)
  66.     finally:
  67.         if fdst:
  68.             fdst.close()
  69.         
  70.         if fsrc:
  71.             fsrc.close()
  72.         
  73.  
  74.  
  75.  
  76. def copymode(src, dst):
  77.     '''Copy mode bits from src to dst'''
  78.     if hasattr(os, 'chmod'):
  79.         st = os.stat(src)
  80.         mode = stat.S_IMODE(st.st_mode)
  81.         os.chmod(dst, mode)
  82.     
  83.  
  84.  
  85. def copystat(src, dst):
  86.     '''Copy all stat info (mode bits, atime and mtime) from src to dst'''
  87.     st = os.stat(src)
  88.     mode = stat.S_IMODE(st.st_mode)
  89.     if hasattr(os, 'utime'):
  90.         os.utime(dst, (st.st_atime, st.st_mtime))
  91.     
  92.     if hasattr(os, 'chmod'):
  93.         os.chmod(dst, mode)
  94.     
  95.  
  96.  
  97. def copy(src, dst):
  98.     '''Copy data and mode bits ("cp src dst").
  99.  
  100.     The destination may be a directory.
  101.  
  102.     '''
  103.     if os.path.isdir(dst):
  104.         dst = os.path.join(dst, os.path.basename(src))
  105.     
  106.     copyfile(src, dst)
  107.     copymode(src, dst)
  108.  
  109.  
  110. def copy2(src, dst):
  111.     '''Copy data and all stat info ("cp -p src dst").
  112.  
  113.     The destination may be a directory.
  114.  
  115.     '''
  116.     if os.path.isdir(dst):
  117.         dst = os.path.join(dst, os.path.basename(src))
  118.     
  119.     copyfile(src, dst)
  120.     copystat(src, dst)
  121.  
  122.  
  123. def copytree(src, dst, symlinks = False):
  124.     '''Recursively copy a directory tree using copy2().
  125.  
  126.     The destination directory must not already exist.
  127.     If exception(s) occur, an Error is raised with a list of reasons.
  128.  
  129.     If the optional symlinks flag is true, symbolic links in the
  130.     source tree result in symbolic links in the destination tree; if
  131.     it is false, the contents of the files pointed to by symbolic
  132.     links are copied.
  133.  
  134.     XXX Consider this example code rather than the ultimate tool.
  135.  
  136.     '''
  137.     names = os.listdir(src)
  138.     os.mkdir(dst)
  139.     errors = []
  140.     for name in names:
  141.         srcname = os.path.join(src, name)
  142.         dstname = os.path.join(dst, name)
  143.         
  144.         try:
  145.             if symlinks and os.path.islink(srcname):
  146.                 linkto = os.readlink(srcname)
  147.                 os.symlink(linkto, dstname)
  148.             elif os.path.isdir(srcname):
  149.                 copytree(srcname, dstname, symlinks)
  150.             else:
  151.                 copy2(srcname, dstname)
  152.         continue
  153.         except (IOError, os.error):
  154.             why = None
  155.             errors.append((srcname, dstname, why))
  156.             continue
  157.             except Error:
  158.                 err = None
  159.                 errors.extend(err.args[0])
  160.                 continue
  161.             
  162.         if errors:
  163.             raise Error, errors
  164.         
  165.  
  166.  
  167.  
  168. def rmtree(path, ignore_errors = False, onerror = None):
  169.     '''Recursively delete a directory tree.
  170.  
  171.     If ignore_errors is set, errors are ignored; otherwise, if onerror
  172.     is set, it is called to handle the error with arguments (func,
  173.     path, exc_info) where func is os.listdir, os.remove, or os.rmdir;
  174.     path is the argument to that function that caused it to fail; and
  175.     exc_info is a tuple returned by sys.exc_info().  If ignore_errors
  176.     is false and onerror is None, an exception is raised.
  177.  
  178.     '''
  179.     if ignore_errors:
  180.         
  181.         def onerror(*args):
  182.             pass
  183.  
  184.     elif onerror is None:
  185.         
  186.         def onerror(*args):
  187.             raise 
  188.  
  189.     
  190.     names = []
  191.     
  192.     try:
  193.         names = os.listdir(path)
  194.     except os.error:
  195.         err = None
  196.         onerror(os.listdir, path, sys.exc_info())
  197.  
  198.     for name in names:
  199.         fullname = os.path.join(path, name)
  200.         
  201.         try:
  202.             mode = os.lstat(fullname).st_mode
  203.         except os.error:
  204.             mode = 0
  205.  
  206.         if stat.S_ISDIR(mode):
  207.             rmtree(fullname, ignore_errors, onerror)
  208.             continue
  209.         
  210.         try:
  211.             os.remove(fullname)
  212.         continue
  213.         except os.error:
  214.             err = None
  215.             onerror(os.remove, fullname, sys.exc_info())
  216.             continue
  217.         
  218.  
  219.     
  220.     
  221.     try:
  222.         os.rmdir(path)
  223.     except os.error:
  224.         None<EXCEPTION MATCH>os.error
  225.         None<EXCEPTION MATCH>os.error
  226.         onerror(os.rmdir, path, sys.exc_info())
  227.     except:
  228.         None<EXCEPTION MATCH>os.error
  229.  
  230.  
  231.  
  232. def move(src, dst):
  233.     '''Recursively move a file or directory to another location.
  234.  
  235.     If the destination is on our current filesystem, then simply use
  236.     rename.  Otherwise, copy src to the dst and then remove src.
  237.     A lot more could be done here...  A look at a mv.c shows a lot of
  238.     the issues this implementation glosses over.
  239.  
  240.     '''
  241.     
  242.     try:
  243.         os.rename(src, dst)
  244.     except OSError:
  245.         if os.path.isdir(src):
  246.             if destinsrc(src, dst):
  247.                 raise Error, "Cannot move a directory '%s' into itself '%s'." % (src, dst)
  248.             
  249.             copytree(src, dst, symlinks = True)
  250.             rmtree(src)
  251.         else:
  252.             copy2(src, dst)
  253.             os.unlink(src)
  254.     except:
  255.         os.path.isdir(src)
  256.  
  257.  
  258.  
  259. def destinsrc(src, dst):
  260.     return abspath(dst).startswith(abspath(src))
  261.  
  262.